home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-1294.lzh / AMOSLIST / text0086.txt < prev    next >
Encoding:
Text File  |  1995-01-03  |  910 b   |  18 lines

  1.     Why not make a plot entirely of your own?  I don't know assembly so
  2. I'll use BASIC.AMOS-Like statements to describe this:
  3. (ScreenAddress=Phybase(0))
  4. Addr=ScreenAddress+X/8,Y*(Screen Width / 8)
  5. Poke Addr,Peek(Addr) Or 2^(X mod 8)
  6.  
  7.     This isn't all of course, but maybe the most important part.  There's
  8. still important parts to figure out for color (you have to do this for every
  9. plane of which the color is a member and use "And Not" instead of "Or" for
  10. every plany of which the color is not a member).  I'm not sure whether that
  11. 2^(X mod 8) is right or if it should be 2^(7-X mod 8).  Also, I'm sure in
  12. assember that many efficiencies can be added... you don't want to use 2^, 
  13. rather some other method of setting bit number [X mod 8].  
  14.     Why are you re-writing plot.  There are free versions of the Turbo
  15. Plus extension that have a fast F Plot command.  (Oops, the first period should
  16. of coursse be a "?".)
  17.  
  18.